home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / System / Prometheus149 / Install < prev    next >
Text File  |  2001-06-12  |  1KB  |  38 lines

  1. ;prometheus.library 1.48->1.49 upgrade
  2. ;Grzegorz "Krashan" Kraszewski
  3. ;$VER: Prometheus upgrade 1.49 (12.7.2001)
  4.  
  5. (complete 0)
  6.  
  7. (set #msg_welcome "This script will update prometheus.library to 1.49 version. Now the library is placed in LIBS: directory and BindDrivers command is no longer used to initialize the Prometheus.")
  8. (set #msg_copylib "Copying prometheus.library 1.49 to LIBS:.")
  9. (set #msg_deleteold "Deleting old prometheus.library from SYS:Expansion.")
  10.  
  11. (if (= @language "polski")
  12.   (
  13.     (set #msg_welcome "Ten skrypt zaktualizuje prometheus.library do wersji 1.49. Od tej wersji biblioteka umieszczona jest w katalogu LIBS:, a komenda BindDrivers nie jest juû uûywana.")
  14.     (set #msg_copylib "Kopiujë prometheus.library 1.49 do LIBS:.")
  15.     (set #msg_deleteold "Kasujë starâ prometheus.library z SYS:Expansion.")
  16.   )
  17. )
  18.  
  19. (welcome #msg_welcome)
  20.  
  21. (copylib
  22.   (prompt #msg_copylib)
  23.   (source "prometheus.library")
  24.   (dest "LIBS:")
  25.   (nogauge)
  26. )
  27.  
  28. (complete 50)
  29.  
  30. (delete "SYS:Expansion/prometheus.library#?"
  31.   (prompt #msg_deleteold)
  32.   (optional "force")
  33. )
  34.  
  35. (complete 100)
  36.  
  37. (set @default-dest (expandpath "LIBS:"))
  38.